home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 1 / Cream of the Crop 1.iso / PROGRAM / CUJ9204.ARJ / 1004094A < prev    next >
Text File  |  1992-06-02  |  148b  |  11 lines

  1.  
  2. #include <stdio.h>
  3.  
  4. #define STACK_SIZE 4
  5.  
  6. static int stack[STACK_SIZE];
  7.  
  8. static size_t stack_ptr1 = 0;
  9. static size_t stack_ptr2 = STACK_SIZE - 1;
  10.  
  11.